home *** CD-ROM | disk | FTP | other *** search
/ Hyper Animation Series: Viper (Limited Edition) / Hyper Animation Series: VIPER (Limited Edition).iso / pc / SYSTEM / class / PlayerShipAction.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-08-04  |  877 b   |  10 lines

  1. abstract class PlayerShipAction extends StgObjectAction {
  2.    public static final int[][] MoveTable = new int[][]{{0, 0}, {0, -262144}, {0, 262144}, {0, 0}, {-262144, 0}, {-196608, -196608}, {-196608, 196608}, {0, 0}, {262144, 0}, {196608, -196608}, {196608, 196608}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}};
  3.  
  4.    public PlayerShipAction(StgFrame var1) {
  5.       super(var1);
  6.    }
  7.  
  8.    public abstract boolean action(PlayerShipIndex var1);
  9. }
  10.